home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2003 November A / PCWK1103A.iso / Top10FreewareENG-SOFT / tswwebcoder / tswwebcoder4en.exe / {app} / scripts / phpmultilinecomment.tss < prev    next >
Text File  |  2003-07-09  |  229b  |  15 lines

  1. {
  2. [Scriptsettings]
  3. Scriptname=PHP multiline comment
  4. ExecuteOnStartup=0
  5. ExecuteOnlyOnce=0
  6. }
  7. program PHPMultilineComment;
  8.  
  9. var
  10.  Code: string;
  11. begin
  12.  Code := '/*'+#13#10+GetSelText+#13#10+'*/';
  13.  SetSelText(Code);
  14. end.
  15.